.PHONY: install test lint build clean
install:
	pip install -e ".[dev]"
test:
	pytest tests/ -v
lint:
	ruff check src/
build:
	python -m build
clean:
	rm -rf dist/ build/ *.egg-info
